home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / systems / unixtkit / man.arc / SORT.MAN < prev    next >
Text File  |  1988-03-28  |  3KB  |  133 lines

  1.  
  2.  
  3.  
  4.         SORT                  ST-UNIX User's Manual                  SORT
  5.  
  6.  
  7.  
  8.         COMMAND
  9.              sort - sort files.
  10.  
  11.         FORMAT
  12.              sort [ -mubdfinrt_✓x ] [ +_✓p_✓o_✓s_✓1  [ -_✓p_✓o_✓s_✓2 ] ] ...  [ -o name ] [
  13.  
  14.         DESCRIPTION
  15.              _✓S_✓o_✓r_✓t sorts lines of all the named  files  (default  standard
  16.              input),  together and writes the result on the standard out-
  17.              put.  The name `-' may  be  used  to  specify  the  standard
  18.              input.
  19.  
  20.              By default sorting is for the entire line and is in  ascend-
  21.              ing  byte  order.  The ordering is affected by the following
  22.              options, one or more of which may appear.
  23.  
  24.              b    Ignore leading blanks (spaces and tabs) in  field  com-
  25.                   parisons.
  26.  
  27.              d    `Dictionary' order: only letters, digits and blanks are
  28.                   significant in comparisons.
  29.  
  30.              f    Fold upper case letters onto lower case.
  31.  
  32.              i    Ignore characters outside the  ASCII  range  32-127  in
  33.                   nonnumeric comparisons.
  34.  
  35.              n    An  initial  numeric  string,  consisting  of  optional
  36.                   blanks,  optional  minus  sign, and zero or more digits
  37.                   with optional decimal point, is  sorted  by  arithmetic
  38.                   value.  Option n implies option b.
  39.  
  40.              r    Reverse the sense of comparisons.
  41.  
  42.              t_✓x   `Tab character' separating fields is _✓x.
  43.  
  44.              The notation +_✓p_✓o_✓s_✓1 -_✓p_✓o_✓s_✓2 restricts a sort  key  to  a  field
  45.              beginning  at  _✓p_✓o_✓s_✓1  and  ending just before _✓p_✓o_✓s_✓2.  _✓P_✓o_✓s_✓1 and
  46.              _✓p_✓o_✓s_✓2 each have the form _✓m._✓n, optionally followed by  one  or
  47.              more  of  the flags bdfinr, where _✓m tells a number of fields
  48.              to skip from the beginning of the line and _✓n tells a  number
  49.              of  characters  to  skip  further.  A missing ._✓n means .0; a
  50.              missing -_✓p_✓o_✓s_✓2 means the end of  the  line.   Under  the  -t_✓x
  51.              option,  fields are strings separated by _✓x; otherwise fields
  52.              are nonempty nonblank strings separated by blanks.
  53.  
  54.              These option arguments are also understood:
  55.  
  56.              c    Check that the input file is sorted  according  to  the
  57.                   ordering  rules;  give no output unless the file is out
  58.                   of sort.
  59.  
  60.  
  61.  
  62.  
  63.         Printed 28/March/1988     30 March 1987                         1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.         SORT                  ST-UNIX User's Manual                  SORT
  71.  
  72.  
  73.  
  74.              m    Merge only, the input files are already sorted.
  75.  
  76.              o    The next argument is the name of an output file to  use
  77.                   instead  of  the standard output.  This file may be the
  78.                   same as one of the inputs.
  79.  
  80.              u    Suppress all but one in each set of equal lines.
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.         Printed 28/March/1988     30 March 1987                         2
  130.  
  131.  
  132.  
  133.